This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<object> Post() | |
{ | |
//First check if request is Multipart Content | |
if (!Request.Content.IsMimeMultipartContent()) | |
{ | |
return "Nope. Not this one."; | |
} | |
else | |
{ | |
//The attachment type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ============================================= | |
-- Author: Ghulam Mustafa | |
-- Create date: 30-Jun-2017 | |
-- Description: Here goes the description for Select Stored Procedure | |
-- ============================================= | |
CREATE PROCEDURE SP_NameOfStoredProcedureForSelect | |
-- Add the parameters for the stored procedure here | |
@Action varchar(50) = NULL | |
/*Here goes the rest of the parameters*/ | |
,@result int = 0 output |
NewerOlder