Guest User

Untitled

a guest
Jul 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. [SgFunctionHost]
  2. public interface ISystemDbFunctions
  3. {
  4. [DbComposableFunction("SYS3.fn_DateToShamsiDate")]
  5. string DateToShamsiDate([DbType(FieldType.DateTime)] DateTime? date);
  6.  
  7. [DbComposableFunction("SYS3.fn_DateToShamsiDate")]
  8. string DateToShamsiDateTime([DbType(FieldType.DateTime)] DateTime? date);
  9.  
  10. [DbComposableFunction("SYS3.fnAddPersianMonth")]
  11. DateTime? AddPersianMonth([DbType(FieldType.DateTime)] DateTime? date, [DbType(FieldType.Int)] int? monthes);
  12.  
  13. [DbComposableFunction("SYS3.fnAddPersianYear")]
  14. DateTime? AddPersianYear([DbType(FieldType.DateTime)] DateTime? date, [DbType(FieldType.Int)] int? years);
  15. }
Add Comment
Please, Sign In to add comment